home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmj / Source / TileCountView.m < prev    next >
Text File  |  1991-03-09  |  463b  |  38 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. /*
  5.  *
  6.  $Author$
  7.  $Header$
  8.  *
  9.  $Log$
  10.  */
  11.  
  12.  
  13. #import "TileCountView.h"
  14. #import    "GameInterface.h"
  15. #import <appkit/graphics.h>
  16. #import    <dpsclient/psops.h>
  17.  
  18. #import    <assert.h>
  19.  
  20.  
  21. @implementation TileCountView
  22.  
  23.  
  24. - drawSelf:(const NXRect *)rects :(int)rectCount {
  25.  
  26.     
  27.     assert( gameInterface );
  28.     
  29.     PSsetgray( NX_WHITE );
  30.     NXRectFillList( rects, rectCount );
  31.     [( GameInterface* )gameInterface tileCountDraw ];
  32.     
  33.     return self;
  34. }
  35.  
  36.  
  37. @end
  38.